home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / comm / msged400.zip / src / unused.h < prev    next >
C/C++ Source or Header  |  1996-06-20  |  225b  |  11 lines

  1. /* suppress warning about unused parameter */
  2. /* written by Paul Edwards and released to the public domain */
  3.  
  4. #ifndef unused
  5. #if defined(PACIFIC)
  6. #define unused(x)
  7. #else
  8. #define unused(x) ((void)(x))
  9. #endif
  10. #endif
  11.